home *** CD-ROM | disk | FTP | other *** search
/ Freelog 125 / Freelog_MarsAvril2015_No125.iso / Musique / Quod Libet / quodlibet-3.3.0-installer.exe / bin / unittest / __init__.pyc (.txt) next >
Python Compiled Bytecode  |  2014-12-31  |  3KB  |  81 lines

  1. # Source Generated with Decompyle++
  2. # File: in.pyc (Python 2.7)
  3.  
  4. '''
  5. Python unit testing framework, based on Erich Gamma\'s JUnit and Kent Beck\'s
  6. Smalltalk testing framework.
  7.  
  8. This module contains the core framework classes that form the basis of
  9. specific test cases and suites (TestCase, TestSuite etc.), and also a
  10. text-based utility class for running the tests and reporting the results
  11.  (TextTestRunner).
  12.  
  13. Simple usage:
  14.  
  15.     import unittest
  16.  
  17.     class IntegerArithmeticTestCase(unittest.TestCase):
  18.         def testAdd(self):  ## test method names begin \'test*\'
  19.             self.assertEqual((1 + 2), 3)
  20.             self.assertEqual(0 + 1, 1)
  21.         def testMultiply(self):
  22.             self.assertEqual((0 * 10), 0)
  23.             self.assertEqual((5 * 8), 40)
  24.  
  25.     if __name__ == \'__main__\':
  26.         unittest.main()
  27.  
  28. Further information is available in the bundled documentation, and from
  29.  
  30.   http://docs.python.org/library/unittest.html
  31.  
  32. Copyright (c) 1999-2003 Steve Purcell
  33. Copyright (c) 2003-2010 Python Software Foundation
  34. This module is free software, and you may redistribute it and/or modify
  35. it under the same terms as Python itself, so long as this copyright message
  36. and disclaimer are retained in their original form.
  37.  
  38. IN NO EVENT SHALL THE AUTHOR BE LIABLE TO ANY PARTY FOR DIRECT, INDIRECT,
  39. SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OF
  40. THIS CODE, EVEN IF THE AUTHOR HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH
  41. DAMAGE.
  42.  
  43. THE AUTHOR SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, BUT NOT
  44. LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
  45. PARTICULAR PURPOSE.  THE CODE PROVIDED HEREUNDER IS ON AN "AS IS" BASIS,
  46. AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE,
  47. SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
  48. '''
  49. __all__ = [
  50.     'TestResult',
  51.     'TestCase',
  52.     'TestSuite',
  53.     'TextTestRunner',
  54.     'TestLoader',
  55.     'FunctionTestCase',
  56.     'main',
  57.     'defaultTestLoader',
  58.     'SkipTest',
  59.     'skip',
  60.     'skipIf',
  61.     'skipUnless',
  62.     'expectedFailure',
  63.     'TextTestResult',
  64.     'installHandler',
  65.     'registerResult',
  66.     'removeResult',
  67.     'removeHandler']
  68. __all__.extend([
  69.     'getTestCaseNames',
  70.     'makeSuite',
  71.     'findTestCases'])
  72. __unittest = True
  73. from result import TestResult
  74. from case import TestCase, FunctionTestCase, SkipTest, skip, skipIf, skipUnless, expectedFailure
  75. from suite import BaseTestSuite, TestSuite
  76. from loader import TestLoader, defaultTestLoader, makeSuite, getTestCaseNames, findTestCases
  77. from main import TestProgram, main
  78. from runner import TextTestRunner, TextTestResult
  79. from signals import installHandler, registerResult, removeResult, removeHandler
  80. _TextTestResult = TextTestResult
  81.